home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-03 | 2.1 KB | 83 lines | [TEXT/CWIE] |
- //----------------------------------------------------------------------------------------
- // UODPartViewCommands.h
- // Copyright © 1994-96 by Apple Computer, Inc. All rights reserved.
- //----------------------------------------------------------------------------------------
-
- #if qContainer
-
- #ifndef __UODPARTVIEWCOMMANDS__
- #define __UODPARTVIEWCOMMANDS__
-
- #ifndef __UODPARTVIEW__
- #include "UODPartView.h"
- #endif
-
-
-
- //========================================================================================
- // CLASS TCopyODPartCommand
- //========================================================================================
-
- class TCopyODPartCommand : public TCommand
- {
- MA_DECLARE_CLASS;
-
- public:
-
- TCopyODPartCommand();
- virtual ~TCopyODPartCommand();
- virtual void ICopyODPartCommand(CommandNumber itsCommandNumber,
- TDocument* itsDocument,
- TODPartView* thePartView);
- virtual void DoIt();
-
- TDocument* fDocument;
- TODPartView* fODPartView;
- };
-
-
- //========================================================================================
- // CLASS TCutODPartCommand
- //========================================================================================
-
- class TCutODPartCommand : public TCommand
- {
- MA_DECLARE_CLASS;
-
- public:
-
- TCutODPartCommand();
- virtual ~TCutODPartCommand();
- virtual void ICutODPartCommand(CommandNumber itsCommandNumber,
- TDocument* itsDocument,
- TODPartView* thePartView);
- virtual void DoIt();
-
- TDocument* fDocument;
- TODPartView* fODPartView;
- };
-
-
- //========================================================================================
- // CLASS TPasteODPartCommand
- //========================================================================================
-
- class TPasteODPartCommand : public TCommand
- {
- MA_DECLARE_CLASS;
-
- public:
-
- TPasteODPartCommand();
- virtual ~TPasteODPartCommand();
- virtual void IPasteODPartCommand(CommandNumber itsCommandNumber,
- TDocument* itsDocument,
- TODPartView* thePartView);
- virtual void DoIt();
-
- TDocument* fDocument;
- TODPartView* fODPartView;
- };
-
- #endif
- #endif //qContainer